home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / script.lzh / script_0.4 / example / example.rexx < prev    next >
OS/2 REXX Batch file  |  1996-12-11  |  174b  |  14 lines

  1. /* example.rexx */
  2.  
  3. Port="script-library-test"
  4. testvar=42
  5.  
  6. echo "testvar = " testvar
  7. echo "Port    = " Port
  8.  
  9. call addlib(Port,100)
  10.  
  11. call testfun()
  12.  
  13. echo "testvar = " testvar
  14.